@import "../fonts/fonts.css";
@import "header.css";
body,ul,li,p,a{
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Avenir', Helvetica, Arial, sans-serif ;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
::-webkit-scrollbar{width:0;}
a{
    text-decoration: none;
}
*{
    outline:none;
    -webkit-tap-highlight-color:rgba(0,0,0,0) ;
}
.rfixed { position: fixed;
    right:0;
    top:60%;
    z-index: 100000;
  }
  .rfixed a{
    display: flex;
    align-items: center;
    justify-content: center;
    color:#333333;
    font-family: 'book';
    padding: 0 30px;
    height: 50px;
    background: white;
    border-radius: 10px 0px 0px 10px;
    margin-bottom: 10px;
    transform: translateX(190px);
    transition: all 600ms;
    position: relative;
  }
  .rfixed a:hover{
    transform: translateX(60px);
  }
  .rfixed a:nth-child(2):hover{
    transform: translateX(190px);
  }
  .rfixed a span{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-right: 5px;
    transform: translateX(-10px);
  }
  .rfixed a img{
    width:20px;
    height:20px;
    object-fit: contain;
  }
  .rfixed a .code{
    width:100px;
    height:100px;
    border-radius: 10px;
    padding: 10px;
    position: absolute;
    left: -133px;
    top: -26px;
    box-shadow: 0px 8px 11px 2px rgb(31 48 179 / 6%);
    background-color: white;
    opacity: 0;
    transition: all 600ms;
  }
  .rfixed a:nth-child(2):hover .code{
    opacity: 1;
  }
  .rfixed a .code img{
    width:100px;
    height:100px;
  }
  .rfixed a p{
width:160px;
}